html {
	font-size: 16px;
}

body {
	/*font-family: 'Barlow', sans-serif;*/
	font-family: 'Roboto', sans-serif;
	/*font-family: 'Rajdhani', sans-serif;*/
	font-size: 16px;
	font-weight: 300;
	text-align: left;
	color: #000;
	background-color: #fff;
	min-width: 320px;
}

strong {
	font-weight: 500;
}

h1 {
	font-family: 'Roboto', sans-serif;
	font-size: 32px;
	font-weight: 300;
	text-align: left;
	margin: 64px 0;
}

h2 {
	font-family: 'Roboto', sans-serif;
	font-size: 28px;
	font-weight: 300;
	text-align: left;
	margin: 36px 0;
}

h3 {
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
	font-weight: 300;
	text-align: left;
	margin: 16px 0;
}

h4 {
	font-family: 'Roboto', sans-serif;
	font-size: 20px;
	font-weight: 300;
	text-align: left;
	margin-bottom: 36px;
}

.tiile {
	font-size: 24px;
	margin: 16px 0;
}

.tiile_big {
	font-size: 64px;
	margin: 16px 0;
}

.my-4 {
	border-color: #bbb;
}

img {
	width: 100%;
	height: auto;
	margin: 0 0 4px 0;
}

span img {
	width: 100%;
	height: auto;
	margin: 0;
}

/* КАРТИНКИ В ПОРТФОЛИО */

/* контейнер с картинкой */
.portfolio_image {
	width: 100%;
	height: 100%;
	position: relative;
	border: 2px solid $c0c0c0;
}

/* фон */
figure,
figure img {
	margin: 0px;
}

figure.effect-sadie figcaption::before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: rgba(48, 48, 48, 90%);
	content: '';
	opacity: 0;
	transform: translate3d(0, 00%, 0);
}

figure.effect-sadie figcaption::before,
figure.effect-sadie p {
	transition: opacity 0.25s, transform 0.25s;
}

/* текст */
figure.effect-sadie p {
	position: absolute;
	bottom: 0;
	left: 0;
	padding-bottom: .7em;
	padding-left: 2em;
	width: 100%;
	opacity: 0;
	transform: translate3d(0, 20px, 0);
	font-size: 24px;
	color: white;
}

figure.effect-sadie:hover figcaption::before,
figure.effect-sadie:hover p {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}


/*Главная картинка объекта*/
.jumbotron {
	padding: 0;
}

ul .nav a {
	color: #cbcbcb;
}

/* ЦЕНЫ */

.price h1,
h2 {
	margin-top: 16px;
}

.price h4 {
	margin: 16px 0 16px 0;
}

.price h4 span {
	color: #777;
	font-size: 16px;
}

.input-group {
	margin-top: 16px;
}

.price a {
	text-decoration: none;
	color: 303030;
}

.price a:hover {
	color: black;
}

.card {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border: none;
}

.card-body {
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	min-height: 1px;
	padding: 0.5rem 0 0 0;
}

.list-group-item {
	/* список*/
	padding: 0.5rem 1rem;
}

/* чекбоксы */
.form-check-input {
	position: absolute;
	margin: 1rem 1rem 0 -1.25rem;
	width: 24px;
	height: 24px;
	background-color: #e9ecef;
}

input[type="checkbox"] {
	display: none;
}

label::before {
	content: '';
	display: inline-block;
	width: 36px;
	height: 36px;
	background-color: #fff;
	margin-left: -20px;
	transition: 0.3s;
	border-radius: 50%;
	border: 2px solid #aaa;
	position: absolute;
	margin-top: 12px;
	cursor: pointer;
}

input[type="checkbox"]:checked+label::before {
	/*background-color: #ffc107;*/
	/*border: 4px solid #cd9a01;*/
	border: none;
	border-radius: 50%;
	background-image: url("../images/checked.png");
	background-size: 100%;
}


/* Надписи при чекбоксе */
.checkbox_title {
	margin-left: 40px;
}

.form-control {
	/* поле площади*/
	height: calc(1.5em + 0.75rem + 2px);
	font-size: 28px;
	/*background-color: #e9ecef; */
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.badge {
	/* цена проекта*/
	display: inline-block;
	padding: 0.5em 0.5em;
	background: #cda173;
	font-size: 28px;
	font-weight: 700;
	color: white;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: 0.25rem;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* бегунок */

.range {
	width: 100%;
	margin: 24px 0 8px 0;
}



/* ФУТЕР */
.footer {
	background-color: #303030;
	padding: 32px 0;
	color: #AAA;
}

.footer a {
	color: #AAA;
}

.footer a:hover {
	color: #fff;
	text-decoration: none;
}